home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #1 / Amiga Plus CD - 1996 - No. 1.iso / pd / grafik / jpeg_v6 / source / gcc / readme.amiga < prev   
Text File  |  1995-09-05  |  3KB  |  105 lines

  1. The Independent JPEG Group's JPEG software
  2. ==========================================
  3.  
  4. README for release 6 of 2-Aug-95
  5. ================================
  6.  
  7. This distribution contains the sixth public release of the Independent JPEG
  8. Group's free JPEG software. See the file README for legal issues.
  9.  
  10. This software is the work of Tom Lane, Philip Gladstone, Luis Ortiz, Jim
  11. Boucher, Lee Crocker, Julian Minguillon, George Phillips, Davide Rossi,
  12. Ge' Weijers, and other members of the Independent JPEG Group.
  13.  
  14. IJG is not affiliated with the official ISO JPEG standards committee.
  15.  
  16. The jpeg-6 directory contains the original, unchanged jpegsrc.v6.tar.gz
  17. archive downloaded directly from ftp.uu.net. If you want to compile with
  18. gcc use the files from this directory.
  19.  
  20.  
  21. Recompiling the programs and creating the linker library: 
  22. (with gcc 2.7.0 and libnix 1.0)
  23.  
  24. - cd into the gcc directory (the directory where you found this file)
  25. - adjust the compiler switches in the makefiles
  26.  
  27. - enter:
  28.  
  29.  make -f makefile.gcc.xxx
  30.  
  31. - check if it works: (floating point part cannot be tested this way)
  32.  
  33.  make -f makefile.gcc.xxx test
  34.  
  35. You should not get any errors or warning messages.
  36.  
  37.  
  38. ********************
  39. NEW IN THIS RELEASE:
  40. ********************
  41.  
  42. - progressive JPEG files are supported
  43. - new program: jpegtran, for lossless transcoding between different JPEG
  44.   formats
  45. - compiled with gcc 2.7.0 and libnix 1.0, switches: -O3 -fbaserel
  46. - all programs should be a bit faster because of that
  47. - see change.log for more information
  48.  
  49.  
  50. ******************
  51. NEW IN RELEASE 5b:
  52. ******************
  53.  
  54. The ixemul.library is not needed any more. Starting with this release cjpeg
  55. and djpeg are using the Unix-like command line style. Redirection and piping
  56. is now fully supported. Examples:
  57.  
  58.  cjpeg inputfile >outputfile
  59.  cjpeg <inputfile >outputfile
  60.  djpeg -scale 1/4 inputfile | cjpeg >outputfile
  61.  
  62. The last example creates a 1/4 scaled JPEG file of your inputfile. Note
  63. that a temporary ppm file will not be created. To use this with the
  64. standard Amiga shell you need one of those pipe archives:
  65.  
  66. Aminet: util/shell/MJPipe09.lha
  67.         util/shell/Pipe_1_5.lha
  68.         util/cli/pipe3310.lha
  69.         
  70. Use the -outfile option if you don't want to use redirection. 
  71.  
  72.  
  73.  
  74. NOTES:
  75.  
  76. 1) I used gcc 2.7.0 and libnix 1.0 for compiling the programs. I cannot
  77.    recommend using gcc versions 2.6.0 - 2.6.3. The -dct float option will
  78.    produce corrupt pictures for the 68000 version of djpeg.
  79.  
  80. 2) If you compile the programs with other compilers (makefiles for Manx and
  81.    SAS are included) they will be slower or contain bugs, so don't do that.
  82.   
  83.  
  84. If you found a bug then please let me know about it. I cannot fix bugs that
  85. are not known to me. (Every behaviour that does not correspond to the original
  86. documentation is considered a bug.) If it is not Amiga-specific you may also
  87. report it directly to the Independent JPEG Group.
  88.  
  89.  
  90. My address:
  91.  
  92.  
  93.  
  94.   electronic mail:                                  normal mail:
  95.   ****************                                  ************
  96.  
  97.  Guenther@studbox.uni-stuttgart.de                  Günther Röhrich
  98.                                                     Lerchenbergstr. 4
  99.                                                     73733 Esslingen
  100.                                                         Germany
  101.  
  102. You may also visit my personal WWW home page at: 
  103.  
  104.  http://rpool1.rus.uni-stuttgart.de/~zc0r1121/
  105.